My workflow fetches data from table then renders it in a loop. First we checks if data>0, if it true, we take first element from array arr.shift() and render it to user, then we go back to checking if data>0 and do the same operations again until is not data >0 is not. In this case we exits the loop. Workflow works only if the length of array is
3, workflow execution stops on 4th iteration with an error - "infinite loop detected". Here is a video which shows an error
https://drive.google.com/file/d/1XEQCYa4RWm6xDpj7xyd9hWscoNZ2ljzO/view?usp=sharing.
Is it possible to rise a infinite loop detection threshold to a higher number (at least 20). I'm building an app which displays high amount of dynamic data to user (depending on his choise). Loop is an only feasible functionality to implement it, but limit to 3 iteration makes it impossible